home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / lame.spec < prev    next >
Encoding:
Text File  |  2000-01-01  |  1.3 KB  |  51 lines

  1. %define ver    3.84
  2. %define beta    alpha
  3. %define prefix    /usr
  4. %define rel    1
  5. %define name    lame
  6.  
  7. Summary: LAME Ain't an MP3 Encoder
  8. Name: %{name}
  9. Version: %{ver}%{beta}
  10. Release: %{rel}
  11. Copyright: LGPL
  12. Packager: Keitaro Yosimura <ramsy@linux.or.jp>
  13. Group: Applications/Multimedia
  14. Source: http://www.sulaco.org:80/mp3/download/beta/lame%{ver}%{beta}.tar.gz
  15. BuildRoot: /var/tmp/lame-%{ver}-root
  16. URL: http://www.sulaco.org/mp3/
  17. Docdir: %{prefix}/doc
  18. Prefix: %prefix
  19.  
  20. %description 
  21. LAME is an educational tool to be used for learning about MP3 encoding.  The
  22. goal of the LAME project is to use the open source model to improve the
  23. psycho acoustics, noise shaping and speed of MP3.  Another goal of the LAME
  24. project is to use these improvements for the basis of a  patent free audio
  25. compression codec for the GNU project.
  26.  
  27. %prep
  28. %setup -n %{name}%{ver}
  29.  
  30. %build
  31. make 
  32.  
  33. %install
  34. rm -fr $RPM_BUILD_ROOT
  35. mkdir -p $RPM_BUILD_ROOT%{prefix}/bin
  36. mkdir -p $RPM_BUILD_ROOT%{prefix}/man/man1
  37. install -s -m 755 lame $RPM_BUILD_ROOT%{prefix}/bin
  38. install -m 644 doc/man/lame.1 $RPM_BUILD_ROOT%{prefix}/man/man1
  39.  
  40. %clean
  41. rm -rf $RPM_BUILD_ROOT
  42. rm -rf /usr/src/redhat/BUILD/%{name}-%{ver}
  43.  
  44. %files
  45. %defattr(-, root, root)
  46.  
  47. %doc LICENSE USAGE COPYING API TODO README* HACKING
  48. %doc doc/html/*.html
  49. %{prefix}/bin/lame
  50. %{prefix}/man/man1
  51.